|
DynPropertiesEnum("")
ED
|
read only
|
RT
|
read only
|
Returns a StringArray of all Dynproperties available for this
Object.
Example how to call this method:
Sub ReadDynProps() Dim vProps As Variant Dim i As Integer 'get all DynProperties of the actual object (DynPicture, Element, ...) vProps = zenOnObject.DynPropertiesEnum("") 'Print informations of DynProperties into output window For i = 0 To UBound(vProps) Debug.Print vProps(i) Next i End Sub